home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
La Bible Des... Jeux
/
La Bible des... Jeux.iso
/
Les Sharewares
/
Société & Divers
/
Xconq 7.0.1
/
doc
/
getsyms.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
1995-08-22
|
225 b
|
8 lines
|
[
TEXT/MPS
]
#!/bin/sh
# This script extracts GDL symbols defined in the input file.
grep '@deffn' $1 | grep '@code' | grep -v '@c ' | sed -e 's/^.*@deffn \([^ ]*\) @code{\([^{ }]*\)}.*$/\2 \1/' | sed -e 's/@@/@/' | sort | uniq
exit 0